home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Text / Show / ZMore / Install next >
Text File  |  1995-11-24  |  720b  |  34 lines

  1. ; Installer-Script fot ZMore © by PackMAN
  2.  
  3. (set #notV37
  4. (cat "» ZMore « benötigt OS2 (V37.175) oder höher..."))
  5.  
  6. (set #msg
  7. (cat "\n\n"
  8.      " » ZMore «  Installer script.\n\n"
  9.      "This script installs » ZMore « on your AMIGA in "C:"\n\n"
  10.      "ZMore © 1994-1995 Falk Zühlsdorff\n"
  11.      "All rights reserved."))
  12.  
  13. ;=============================================================================
  14. ; OS2 ?
  15.  
  16. (if (< (/ (getversion) 65536) 37)
  17. (
  18.     (abort #notV37)
  19. ))
  20.  
  21. ;=============================================================================
  22.  
  23. (message #msg)
  24. (welcome)
  25.  
  26. (copyfiles
  27.     (prompt "Textviewer ZMore")
  28.     (help "only the viewer no doc will be installed")
  29.     (source "ZMore")
  30.     (dest "C:" )
  31.     (confirm)
  32. )
  33.  
  34.